home *** CD-ROM | disk | FTP | other *** search
- /********************************************************* DEFINITION
- DATE: 9/27/93
- AUTHOR: Eric R. Rosé
-
- CLASS: CPPRadioCluster
-
- SUPERCLASS: CPPObjectList
-
- This C++ class manages a group of radio buttons
-
- ********************************************************************/
-
- #pragma once
-
- #include <CPPObjectList.h>
-
- class CPPRadioButton;
-
- class CPPRadioCluster : public CPPObjectList {
- public:
- CPPRadioCluster (void);
-
- ~CPPRadioCluster (void);
-
- virtual char *ClassName (void);
-
- void TurnOn (CPPRadioButton *whichButton);
-
- protected:
- short currentButton;
- };